home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / python2.4 / email / MIMEImage.pyc (.txt) < prev    next >
Python Compiled Bytecode  |  2005-10-18  |  2KB  |  44 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyc (Python 2.4)
  3.  
  4. '''Class representing image/* type MIME documents.'''
  5. import imghdr
  6. from email import Errors
  7. from email import Encoders
  8. from email.MIMENonMultipart import MIMENonMultipart
  9.  
  10. class MIMEImage(MIMENonMultipart):
  11.     '''Class for generating image/* type MIME documents.'''
  12.     
  13.     def __init__(self, _imagedata, _subtype = None, _encoder = Encoders.encode_base64, **_params):
  14.         """Create an image/* type MIME document.
  15.  
  16.         _imagedata is a string containing the raw image data.  If this data
  17.         can be decoded by the standard Python `imghdr' module, then the
  18.         subtype will be automatically included in the Content-Type header.
  19.         Otherwise, you can specify the specific image subtype via the _subtype
  20.         parameter.
  21.  
  22.         _encoder is a function which will perform the actual encoding for
  23.         transport of the image data.  It takes one argument, which is this
  24.         Image instance.  It should use get_payload() and set_payload() to
  25.         change the payload to the encoded form.  It should also add any
  26.         Content-Transfer-Encoding or other headers to the message as
  27.         necessary.  The default encoding is Base64.
  28.  
  29.         Any additional keyword arguments are passed to the base class
  30.         constructor, which turns them into parameters on the Content-Type
  31.         header.
  32.         """
  33.         if _subtype is None:
  34.             _subtype = imghdr.what(None, _imagedata)
  35.         
  36.         if _subtype is None:
  37.             raise TypeError('Could not guess image MIME subtype')
  38.         
  39.         MIMENonMultipart.__init__(self, 'image', _subtype, **_params)
  40.         self.set_payload(_imagedata)
  41.         _encoder(self)
  42.  
  43.  
  44.